home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / Presentations / Closures, Observers, Properties / COP Slides < prev   
Text File  |  2000-06-22  |  7KB  |  561 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.                         User interface    --------->      Model    
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.                         AppleScript --------------->  |-----------|
  41.                                                                 |                |
  42.                         User interface ------------>  |   Model   |
  43.                                                                 |                |
  44.                         Network interface --------->  |-----------|
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.                         Button        ------------->      Action    
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.                         Button        ------------->      Action    
  99.  
  100.                                 void (*action)()
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. struct Closure
  116.   {
  117.  
  118.    Model *model;
  119.  
  120.  
  121.  
  122.    
  123.    Closure( Model& theModel )
  124.      : model( &theModel )
  125.      {}
  126.    
  127.    
  128.  
  129.    
  130.    void operator()() const
  131.      {
  132.       model->Method();
  133.      }
  134.   };
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143. struct Closure
  144.   {
  145.  
  146.    Model *model;
  147.    void (Model::*method)();
  148.  
  149.  
  150.  
  151.    Closure( Model& theModel, void (Model::*theMethod)() )
  152.      : model( &theModel ),
  153.        method( theMethod )
  154.      {}
  155.  
  156.    
  157.    
  158.    void operator()() const
  159.      {
  160.       (model->*method)();
  161.      }
  162.   };
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171. struct Closure
  172.   {
  173.  
  174.    void *genericModel;
  175.    void (Model::*method)();
  176.  
  177.  
  178.  
  179.    Closure( Model& theModel, void (Model::*theMethod)() )
  180.      : genericModel( &theModel ),
  181.        method( theMethod )
  182.      {}
  183.  
  184.  
  185.  
  186.    void operator()() const
  187.      {
  188.       Model& model = *static_cast<Model*>( genericModel );
  189.       ( model->*method )();
  190.      }
  191.   };
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199. struct Closure
  200.   {
  201.    class Generic;
  202.    void *genericModel;
  203.    void (Generic::*genericMethod)();
  204.  
  205.  
  206.  
  207.    Closure( Model& theModel, void (Model::*theMethod)() )
  208.      : genericModel( &theModel ),
  209.        genericMethod( reinterpret_cast< void (Generic::*)() >( theMethod ) )
  210.      {}
  211.  
  212.  
  213.  
  214.    void operator()() const
  215.      {
  216.       Model& model = *static_cast<Model*>( genericModel );
  217.       void (Model::*method)() =
  218.          reinterpret_cast< void (Model::*)() >( genericMethod );
  219.       ( model->*method )();
  220.      }
  221.   };
  222.  
  223.  
  224.  
  225.  
  226.  
  227. struct Closure
  228.   {
  229.    class Generic;
  230.    void *genericModel;
  231.    void (Generic::*genericMethod)();
  232.  
  233.  
  234.    template < class Model >
  235.    Closure( Model& theModel, void (Model::*theMethod)() )
  236.      : genericModel( &theModel ),
  237.        genericMethod( reinterpret_cast< void (Generic::*)() >( theMethod ) )
  238.      {}
  239.  
  240.  
  241.    template < class Model >
  242.    void operator()() const
  243.      {
  244.       Model& model = *static_cast<Model*>( genericModel );
  245.       void (Model::*method)() =
  246.          reinterpret_cast< void (Model::*)() >( genericMethod );
  247.       ( model->*method )();
  248.      }
  249.   };
  250.  
  251.  
  252.  
  253.  
  254.  
  255. struct Closure
  256.   {
  257.    class Generic;
  258.    void *genericModel;
  259.    void (Generic::*genericMethod)();
  260.    void (*thunk)( const Closure& );
  261.  
  262.    template < class Model >
  263.    Closure( Model& theModel, void (Model::*theMethod)() )
  264.      : genericModel( &theModel ),
  265.        genericMethod( reinterpret_cast< void (Generic::*)() >( theMethod ) ),
  266.        thunk( Thunk<Model> )
  267.      {}
  268.  
  269.    template < class Model >
  270.    void Thunk( const Closure& self ) const
  271.      {
  272.       Model& model = *static_cast<Model*>( self.genericModel );
  273.       void (Model::*method)() =
  274.          reinterpret_cast< void (Model::*)() >( self.genericMethod );
  275.       ( model->*method )();
  276.      }
  277.    
  278.    void operator()() const                   { (*thunk)( *this ); }
  279.   };
  280.  
  281.  
  282.  
  283.  
  284. template < class Signature >
  285. class Closure;
  286.  
  287. // Specialization for no parameters
  288. template < class Result >
  289. class Closure< Result (*)() >;
  290.  
  291.  
  292. // Specialization for one parameter
  293. template < class Result, class P >
  294. class Closure< Result (*)(P) >;
  295.  
  296.  
  297. // Specialization for two parameters
  298. template < class Result, class P0, class P1 >
  299. class Closure< Result (*)(P0,P1) >;
  300.  
  301.  
  302. // And so on...
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310. template < class Result >              // Specialization for no parameters
  311. struct Closure< Result (*)() >
  312.   {
  313.    class Generic;
  314.    void *genericModel;
  315.    void (Generic::*genericMethod)();
  316.    Result (*thunk)( const Closure& );
  317.  
  318.    template < class Model >
  319.    Closure( Model& theModel, Result (Model::*theMethod)() )
  320.      : genericModel( &theModel ),
  321.        genericMethod( reinterpret_cast< void (Generic::*)() >( theMethod ) ),
  322.        thunk( Thunk<Model> )
  323.      {}
  324.  
  325.    template < class Model >
  326.    Result Thunk( const Closure& self ) const
  327.      {
  328.       Model& model = *static_cast<Model*>( self.genericModel );
  329.       Result (Model::*method)() =
  330.          reinterpret_cast< Result (Model::*)() >( self.genericMethod );
  331.       return ( model->*method )();
  332.      }
  333.    
  334.    Result operator()() const                 { return (*thunk)( *this ); }
  335.   };
  336.  
  337.  
  338. template < class Result, class P >     // Specialization for one parameter
  339. struct Closure< Result (*)(P) >
  340.   {
  341.    class Generic;
  342.    void *genericModel;
  343.    void (Generic::*genericMethod)();
  344.    Result (*thunk)( const Closure&, P );
  345.  
  346.    template < class Model >
  347.    Closure( Model& theModel, Result (Model::*theMethod)(P) )
  348.      : genericModel( &theModel ),
  349.        genericMethod( reinterpret_cast< void (Generic::*)() >( theMethod ) ),
  350.        thunk( Thunk<Model> )
  351.      {}
  352.  
  353.    template < class Model >
  354.    Result Thunk( const Closure& self, P parameter ) const
  355.      {
  356.       Model& model = *static_cast<Model*>( self.genericModel );
  357.       Result (Model::*method)(P) =
  358.          reinterpret_cast< Result (Model::*)(P) >( self.genericMethod );
  359.       return ( model->*method )( parameter );
  360.      }
  361.    
  362.    Result operator()( P parameter ) const    { return (*thunk)( *this, parameter ); }
  363.   };
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.                 Standard File Dialog        ------------->      Volume List    
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394. template < class Signature > class Observable;
  395. template < class Signature > class Observation;
  396.  
  397. template < class P >
  398. struct Observable< void(*)(P) >       // Specialization for one parameter
  399.   {
  400.     typedef Closure< void(*)(P) > Observer;
  401.     typedef LinkedList< Observer > List;
  402.     
  403.     mutable List observers;
  404.     
  405.    void Broadcast( P parameter ) const
  406.      {
  407.       for ( List::const_iterator observer = observers.begin();
  408.             observer != observers.end();
  409.             ++observer )
  410.           (*observer)( parameter );
  411.       }
  412.   };
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422. template < class Signature > class Observable;
  423. template < class Signature > class Observation;
  424.  
  425. template < class Signature >
  426. struct Observation
  427.   {
  428.     typedef Observable< Signature >::Observer Observer;
  429.     typedef Observable< Signature >::List List;
  430.    
  431.    List::Link link;
  432.    
  433.    Observation( const Observable<Signature>& observed,
  434.                 Observer observer )
  435.      : link( observer )
  436.      {
  437.        observed.observers.push_back( link );
  438.      }   
  439.   };
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.          Boolean AppleScript Property  ------------->  Zoomed    
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478. template < class Type >
  479. struct Property
  480.   {
  481.    Closure< Type (*)() > get;
  482.    Closure< void (*)( Type ) > set;
  483.    
  484.    operator Type() const
  485.      {
  486.       return get();
  487.      }
  488.    
  489.    Property& operator=( Type value )
  490.      {
  491.        set( value );
  492.        return *this;
  493.      }
  494.  
  495.    
  496.    Property& operator=( const Property& value )
  497.      {
  498.        set( value.get() );
  499.        return *this;
  500.      }
  501.   };
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.                         Checkbox      ------------->      Boolean property   
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532.  
  533.  
  534. template < class Type >
  535. struct ObservableProperty: public Observable< void (*)(Type) >
  536.   {
  537.    Closure< Type (*)() > get;
  538.    Closure< void (*)( Type ) > set;
  539.    
  540.    operator Type() const
  541.      {
  542.       return get();
  543.      }
  544.    
  545.    Property& operator=( Type value )
  546.      {
  547.        set( value );
  548.        Broadcast( get() );
  549.        return *this;
  550.      }
  551.  
  552.    Property& operator=( const Property& value )
  553.      {
  554.        set( value.get() );
  555.        Broadcast( get() );
  556.        return *this;
  557.      }
  558.   };
  559.  
  560.  
  561.